Subroutine to get the u_matrix from a SOM
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(self_organizing_map) | :: | kohonen_map |
A |
|||
real(kind=wp), | intent(out), | dimension(:,:,:) | :: | u_matrix |
A real array to return the u_matrix |
subroutine get_u_matrix_som(kohonen_map,u_matrix) !======================================================================================== !! Subroutine to get the u_matrix from a SOM class(self_organizing_map) :: kohonen_map !! A `self_organizing_map` object real(kind=wp),dimension(:,:,:),intent(out) :: u_matrix !! A real array to return the u_matrix u_matrix=kohonen_map%u_matrix; ! end subroutine get_u_matrix_som